home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / mlregres / maxdata.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-12-01  |  342 b   |  19 lines

  1. unit Maxdata;
  2.  
  3. interface
  4.  
  5. const cMAXDATA = 2500;
  6.  
  7. type float = double;
  8.  
  9. implementation
  10.  
  11. { None.
  12.  
  13.   The developer can edit the constant cMAXDATA above as necessary in order
  14.   to accomodate larger datasets.  cMAXDATA can be made as large as allowed
  15.   within the memory limits of the development and compiling system.
  16. }
  17.  
  18. end.
  19.